home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 78
/
(Vol 78) My Disc.iso
/
Games
/
move_on_up.swf
/
scripts
/
frame_68
/
DoAction.as
Wrap
Text File
|
2008-10-28
|
551b
|
23 lines
function gameWon()
{
score = game.getScore();
gotoAndStop("gameWon");
play();
}
function gameLost()
{
score = game.getScore();
gotoAndStop("gameLost");
play();
}
loadMovieNum("http://watches.whodidit.co.uk/watch94.swf",10,"GET");
var score = 0;
var game = new Game(game_mc);
game.setPanel(panel);
game.setSpecialFX(specialfx_mc);
game.setGlowFX(glowfx_mc);
game.startGame();
game.onWon = uk.kerb.utils.EventDelegate.create(this,gameWon);
game.onLost = uk.kerb.utils.EventDelegate.create(this,gameLost);
stop();